home *** CD-ROM | disk | FTP | other *** search
/ Delphi Informant Complete 1995 - 2000 / Delphi Informant Complete 1995 to 2000.iso / Delphi Informant Magazine Complete Works SOURCE CODE 1998.rar / 1998 / Feb / di9802kw / ListPics.dpr < prev    next >
Text File  |  1997-08-19  |  369b  |  23 lines

  1. program ListPics;
  2.  
  3. {
  4.   Demonstration of WebPics CGI program.
  5.  
  6.   Written by Keith Wood, 12 Aug 1997.
  7. }
  8.  
  9. {$APPTYPE CONSOLE}
  10.  
  11. uses
  12.   HTTPApp,
  13.   CGIApp2 in 'CGIApp2.pas',
  14.   ListPics1 in 'ListPics1.pas' {wmdListPics: TWebModule};
  15.  
  16. {$R *.RES}
  17.  
  18. begin
  19.   Application.Initialize;
  20.   Application.CreateForm(TwmdListPics, wmdListPics);
  21.   Application.Run;
  22. end.
  23.